home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-11-08 | 857 b | 36 lines | [TEXT/MPS ] |
- //========================================================================================
- //
- // File: FWMenu.k
- // Release Version: $ 1.0d11 $
- //
- // Copyright: © 1993, 1995 by Apple Computer, Inc., all rights reserved.
- //
- //========================================================================================
-
- #ifndef FWMENU_K
- #define FWMENU_K
-
- #if FW_LIB_EXPORT_PRAGMAS
- #pragma lib_export on
- #endif
-
- //========================================================================================
- // defines
- //========================================================================================
-
- #define FW_kNoCommand -1
- #define FW_kSeparatorCommand 0
-
- #ifdef FW_BUILD_WIN
- #define FW_kFirstUserCommandID 1501
- #endif
-
- #ifdef FW_BUILD_MAC
- #define FW_kFirstUserCommandID 20001
- #endif
-
- #if FW_LIB_EXPORT_PRAGMAS
- #pragma lib_export off
- #endif
-
- #endif